-
Notifications
You must be signed in to change notification settings - Fork 177
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feature/chained pubsub #1798
base: master
Are you sure you want to change the base?
feature/chained pubsub #1798
Conversation
…callback-sub1-pub2->sub2 chain (publishing inside a subscriber callback)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clang-tidy made some suggestions
@@ -232,3 +232,69 @@ TEST(core_cpp_pubsub, TestPublisherIsSubscribedTiming) | |||
// finalize eCAL API | |||
eCAL::Finalize(); | |||
} | |||
|
|||
TEST(core_cpp_pubsub, TestChainedPublisherSubscriberCallback) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: all parameters should be named in a function [readability-named-parameter]
TEST(core_cpp_pubsub, TestChainedPublisherSubscriberCallback) | |
TEST(core_cpp_pubsub /*unused*/, TestChainedPublisherSubscriberCallback /*unused*/) |
eCAL::CSubscriber sub1("topic1"); | ||
auto subscriber1_callback = [&](const char* /*topic_name*/, const eCAL::SReceiveCallbackData* data) { | ||
// On receiving data from Publisher1, Publisher2 sends the same data | ||
std::string received_data(static_cast<const char*>(data->buf), data->size); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: variable 'received_data' of type 'std::string' (aka 'basic_string') can be declared 'const' [misc-const-correctness]
std::string received_data(static_cast<const char*>(data->buf), data->size); | |
std::string const received_data(static_cast<const char*>(data->buf), data->size); |
Description
Added pubsub unit test to test publishing inside a subscriber callback.